home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Linux LiveCD / GeeXboX 1.0 EN / geexbox-1.0-en.i386.iso / GEEXBOX / etc / init.d / 78_cpufreq < prev    next >
Text File  |  2006-06-21  |  209b  |  14 lines

  1. #!/bin/sh
  2. #
  3. # cpufreq deamon
  4. #
  5. # runlevels: geexbox, debug
  6.  
  7. if [ -x /usr/bin/cpufreqd -a -r /etc/cpufreqd.conf ]; then
  8.   echo "### Starting CpuFreq daemon ###"
  9.  
  10.   cpufreqd --file=/etc/cpufreqd.conf
  11. fi
  12.  
  13. exit 0
  14.